html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}


.logo img {
  width: 150px;
}

.hdrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.headersection {
  position: absolute;
  width: 100%;
  z-index: 22;
  padding: 20px 0;
  background: transparent;
  transition: all 0.3s ease;

}


.headersection.sticky {
  position: fixed;
  top: 0;
  background: #fff;
  color: #000 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.headersection.sticky .navmenu .menu li a {
  color: #333 !important;
}

.navmenu .menu {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.navmenu .menu li {
  position: relative;
  display: inline-block;
  padding: 10px 0;
}

.navmenu .menu li a {
  text-decoration: none;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 10px 20px;
  display: inline-block;
}


.headersection.sticky .navmenu .menu li a {
  color: #333;
}

.activeli {
  color: #27026C !important;
  font-weight: 600;
  text-decoration: none;
  padding: 20px;
}


.navmenu .menu li a:hover {
  color: #000;

}

/* MOBILE MENU */
.mobilemenu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobilemenu span {
  width: 25px;
  height: 3px;
  background-color: #27026C;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobilemenu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobilemenu.open span:nth-child(2) {
  opacity: 0;
}

.mobilemenu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


.headerbutton a {
  display: inline-block;
  background: #283a82;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.headerbutton a i {
  margin-left: 8px;
}

.innerpage .navmenu .menu li a {
  color: #27026C !important;
}

.innerpage .activeli {
  color: #27026C !important;
}

/* .ban-bx {
  float: left;
  margin-top: 40px;
  margin-bottom: 50px;
} */

/* .ban-bx h6 {
  width: 100%;
  float: left;
  color: white;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 400;
}

.ban-bx h1 {
  width: 100%;
  float: left;
  color: white;
  font-size: 50px;
  margin-bottom: 50px;
  font-weight: 700;
}

.ban-bx p {
  width: 100%;
  float: left;
  color: white;
  font-size: 18px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 99px;
}
 */


.headerbutton a:hover {
  text-decoration: none;
}


/* herosection */



.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.heroslider {
  width: 100%;
}

.item {
  position: relative;
}



.hero-content {
  position: absolute;
  top: 40%;
  /* was 50% */
  left: 50px;
  transform: translateY(-40%);
  color: #F9FAFB;
  text-align: left;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #F9FAFB;
}

.hero-btn {
  display: inline-block;
  background: #283a82;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 40px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #a7c7ff;
  color: #000;
  text-decoration: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.slide-img {
  position: relative;
  height: 100vh;
}

.slide-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.points {

  width: 33.3333%;
  padding-right: 16px;
}

.points h3 {

  font-size: 44px;
  font-weight: bold;
  color: #a7c7ff;

  margin-right: 13px;

}

.points h2 {
  font-size: 18px;
  font-weight: 400;
  color: #F9FAFB;

  line-height: 30px;

}

.point-heading {
  display: flex;
  align-items: center;
  gap: 15px;

}

.tailor-detail {
  position: absolute;
  bottom: 0px;
  left: 50px;
  right: 50px;
  width: auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  flex-wrap: wrap;
}

.points a i {
  width: 64px;
  height: 64px;
  color: #fff;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1,
.hero-content p,
.hero-content a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.active .hero-content h1 {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}

.active .hero-content p {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}

.active .hero-content a {
  transition-delay: 0.6s;
  opacity: 1;
  transform: translateY(0);
}



/* ABOUTSEC */

.aboutsection {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.abt-img {
  width: 100%;
  /* float: left; */
  height: auto;
  margin-left: -95px;
}

.abt-txt {
  width: 100%;
  height: auto;
  /* float: left; */
}

.abt-txt h5 {
  color: #283A82;
}

.abt-txt h2 {
  width: 100%;
  /* float: left; */
  color: #283A82;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 30px;
}

.bottomstate {
  display: flex;
  gap: 130px;
  margin-top: 30px;
  flex-wrap: wrap;

}

.numbers {

  position: relative;
  padding-left: 15px;

}

.numbers span {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.numbers p {
  margin: 0;
  font-size: 18px;
  color: #666;
}

.numbers:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 80px;
  background: #283A82;
  top: 4px;
  left: 0;
  border-radius: 34px;
}


.abt-txt span {
  font-weight: 700;
}

.abt-txt p {
  font-size: 18px;
  font-weight: 400;
  color: black;
  width: 100%;
  line-height: 30px;
  margin-bottom: 30px;
}



/* OUR-SERVICE */

.industries-section {
  background-image: url(../assets/images/fashion-designer.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px
}

.industries-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.industry-title {
  position: relative;
  z-index: 2;
}

.industry-title h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #283A82;
}

.icon-img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.service-card,
.service-card2 {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  width: 90%;
}

.service-card h6,
.service-card2 h6 {
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
  margin: 0;
  font-size: 20px;
}

.service-card2 {
  top: 15px;
  right: 30px;
}

.viewmorebtn {
  display: inline-block;
  background: #283a82;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
}

.viewmorebtn i {
  margin-left: 7px;
}

/* HOW-WE-CUSTOMIZE */


.services-section {
  text-align: center;
  background: #2b397c;
  color: white;
  padding: 60px 20px;
}

.serv-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 10px;
}


.serv-title p {
  font-size: 18px;
  color: #fff;

  margin: auto;
}


.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  max-width: 300px;
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  line-height: 1.5;
}

.steps {
  margin-top: 50px;
}

/* PORTFOLIO */


.pt {
  width: 100%;

  height: auto;
  padding: 60px 0px;
  background-color: #fff;
}

.pt-1 {
  width: 100%;
  float: left;
  height: auto;
}

.pt-img {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 10px;
}

.pt-img img {
  width: 100%;
  float: left;
}

.pt-txt {
  width: 100%;
  float: left;
  height: auto;
}

.pt-txt a {
  font-size: 18px;
  color: #283A82;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
  margin-top: 10px;
}

.pt-txt p {
  width: 100%;
  float: left;
  height: auto;
  font-size: 18px;
  color: black;
}


.knowmorebtn {
  display: inline-block;
  margin: auto;
  background: #283a82;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  transition: 0.3s ease;
  margin-top: 40px;
}

.knowmorebtn i {
  margin-left: 7px;
}

.knowmorebtn a {
  text-decoration: none !important;
}


/*  */

.features {
  width: 100%;

  height: auto;
  padding: 60px 0px;
  background-color: #F5F5F5;
}

.features h4 {
  width: 100%;
  float: left;
  text-align: center;
  color: #FEDE00;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
}

.features h1 {
  width: 100%;
  float: left;
  text-align: center;
  color: black;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 700;
}

.ft-bx {
  width: 20%;
  float: left;
  height: auto;
}

.ft-bx img {
  float: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 150px;
  margin-bottom: 30px;
}

.ft-bx h3 {
  width: 100%;
  float: left;
  height: auto;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: #283A82;
}

/*  */
/* .customized {
  width: 100%;
  height: auto;
  padding: 40px 0px;
}

.cstm {
  width: 100%;
  float: left;
  padding: 15px 15px;
  height: auto;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px 0px inset, rgba(17, 17, 26, 0.05) 0px 8px 32px 0px;
  border-radius: 10px;
}

.cstm h3 {
  float: left;
  font-size: 20px;
  font-weight: 500;
  color: black;
  margin-bottom: 20px;
}

.cstm a{
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  color: #27026C;
  float: left;
}

.cstm img {
  float: right;
  width: auto !important;
  max-width: 160px;
  height: auto;
  margin-top: -75px;
} */
.customized {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  
}

.cstm-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: background 0.3s ease;
 
}

.cstm-card:hover {
  background-color: #F7F7F7; 
}



.card-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.card-text p{
  font-size: 18px;
  font-weight: bold;
  color: #283A82;
}



.card-img {
  max-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wpbtn {
  margin-top: 10px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-btn i {
  margin-right: 5px;
  font-size: 14px;
}


  .cstm-card-link {
    text-decoration: none!important;
    color: inherit;
    display: block;
  }
  
  .whatsapp-btn:hover {
    background-color: #1ebe5d;
    text-decoration: none;
  }
/* OR-JOUNEY-SOFAR */

.journey-section {
  background: linear-gradient(180deg, #142041 0%, #283A82 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.journey-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.journey-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.journey-block {
  flex: 1;
  min-width: 150px;
}

.journey-block img {
  width: 60px;
  margin-bottom: 15px;
}

.journey-block p {
  margin: 0;
  font-size: 18px;
}

.journey-block span {
  font-size: 28px;
  font-weight: bold;
  color: #FEDE00;
}

/*  */

.hpy {
  width: 100%;
  height: auto;

  padding: 60px 0px;
}

.hpy h1 {
  width: 100%;
  text-align: center;
  float: left;
  font-size: 35px;
  font-weight: 700;
  color: #283A82;
  margin-bottom: 30px;
}

.hpy p {
  width: 100%;
  text-align: center;
  float: left;
  font-size: 18px;
  font-weight: 400;
  color: black;
  margin-bottom: 50px;
}

.hp-txt {
  width: 100%;
  float: left;
  height: auto;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.hp-txt img {
  width: 370px !important;
  height: auto;
  float: left;
  margin-left: 20px;
  margin-bottom: 25px;
}

.hp-txt p {
  float: left;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  color: black;
  text-align: justify;
  margin-bottom: 30px;
}

.hp-txt h4 {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: black;
  text-align: justify;
  /*  margin-bottom: 50px;*/
}

.hp-txt h5 {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #283A82;
  text-align: justify;
  /*  margin-bottom: 50px;*/
}

.hp-img {
  width: 100%;
  float: left;
  height: auto;
}

.hp-img img {
  width: 100%;
  float: left;
}

/*  */
.cli {
  background-color: #f9f9f9;
  padding-top: 60px;
  padding-bottom: 60px;
}

.cl-head {
  font-size: 35px;
  font-weight: 700;
  line-height: 46px;
  color: #283A82;
}

.cli-text {
  font-size: 18px;
  font-weight: 400;
  color: #283A82;
}



.client-logo {
  max-height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.1);
}


.logo-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}


.logo-row-2 .owl-stage {
  direction: rtl;
}

.logo-row-2 .owl-item {
  direction: ltr;
}

.owl-prev,
.owl-next {
  display: none !important;
}

/*  */

.ft-ct {
  width: 100%;
  float: left;
  height: auto;
  padding-top: 40px;
  padding-bottom: 60px;

}

.ft-1 img {
  width: 50px;
  margin-bottom: 15px;
}

.ft-content h2 {
  font-size: 22px;
  color: black;
  font-weight: 700;
  line-height: 1.4;
}

.ft-1 {
  display: flex;
  align-items: center;
  gap: 20px;
}

.input-group {
  width: 100%;
  display: flex;
  float: left;
  align-items: center;

}

.input {
  min-height: 50px;
  max-width: 206px;
  padding: 0 1rem;
  float: left;
  color: black;
  font-size: 15px;
  border: 1px solid #283A82;
  /*  border-radius: 6px 0 0 6px;*/
  background-color: transparent;
  margin-top: 60px;
}

.button--submit {
  min-height: 50px;
  width: 100%;
  padding: .5em 2.5em;
  border: none;
  background-color: #283A82;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .3s ease-in-out;
}


/* FOOTER-SEC */

.footersec {
  padding-top: 80px;
  padding-bottom: 30px;
}

footer a {
  text-decoration: none;
  color: #000;
}

ul {
  padding-left: 0px !important;
}

footer a:hover {
  text-decoration: none;
}

footer h4 {
  color: #283a82;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.footersec .footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;

}

.ft-link {
  list-style: none;
  padding-left: 0;
}

.ft-link li {
  margin-bottom: 10px;
}

.footersec .location {
  color: #000;
  font-size: 16px;
  line-height: 1.5;

}

footer .border-top {
  border-top: 1px solid #30363d !important;
}

.ft-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.ft-contact i {
  font-size: 18px;
  color: #283A82;
  margin-top: 4px;
}

.location p {
  margin-bottom: 0px !important;
}

.footer-social-icons a i {
  color: #283A82;
  font-size: 24px;
}

.footer-social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 13px;
}

.footer-social-icons a {
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid white;
  border-radius: 50%;
  text-decoration: none;
  color: #000;

}

.footer-social-icons a:hover {
  text-decoration: none;
}

.copyright {
  font-size: 15px;
  color: #000;

}

.copyright p {
  margin-bottom: 0px !important;
  font-size: 15px;
}

.brand a {
  color: #283A82;
}




















.customization {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

.btn2 {
  width: 140px;
  height: 40px;
  padding: 7px;
  font-size: 18px;
  text-decoration: none !important;
  color: #283A82;
  background-color: white;
  float: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 7px;
  border-radius: 5px;
  display: block;
}

.btn2 img {
  margin-left: 7px;
  width: 15px;
}

.butn1 {
  width: 160px;
  height: 40px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  background-color: #283A82;
  border-radius: 5px;
  float: left;
  padding-top: 5px;
  padding-left: 20px;
}

.butn1 img {
  margin-left: 7px;
  width: 15px;
}





































.customization {
  width: 100%;
  float: left;
  height: auto;
  background-color: #283A82;
  padding: 60px 0px;
}

.customization h1 {
  width: 100%;
  float: left;
  font-size: 30px;
  color: white;
  margin-bottom: 40px;
  text-align: center;
}

.customization h3 {
  width: 100%;
  float: left;
  font-size: 20px;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.customization p {
  width: 100%;
  float: left;
  font-size: 18px;
  color: white;
  text-align: center;
  margin-bottom: 60px;
}

.cst-bx {
  width: 100%;
  float: left;
  height: auto;
  padding: 0px 10px;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.cst-bx img {
  float: none;
  width: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 30px;
}

.cst-bx p {
  width: 100%;
  float: left;
  color: white;
  text-align: center;
}




























.services {
  width: 100%;
  height: auto;
  padding: 60px 0px;
  float: left;
  background-color: #ffffff;
}

.services h1 {
  font-size: 30px;
  font-weight: 700;
  color: #27026C;
  width: 100%;
  margin-bottom: 30px;
}

.service-text {
  width: 100%;
  float: left;
}

.service-text p {
  font-size: 17px;
  font-weight: 500;
  width: 100%;
  color: black;
  margin-bottom: 30px;
}

.service-text img {
  width: 30px !important;
  height: auto;
  float: left;
}

.service-text a {
  font-weight: 600;
  width: 100%;
  float: left;
  text-decoration: none;
  font-size: 17px;
  color: black;
  margin-bottom: 25px;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.service-text a:hover {
  color: #27026C;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.direction {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 60px;
  background-color: #27026C;
  float: left;
  margin-right: 25px;
  border: 1px solid transparent;

  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.direction svg {
  width: 25px;
  height: auto;
  float: left;
  margin-top: 2px;
  margin-left: 3px;
  fill: #ffff !important;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.direction:hover {
  background-color: white;
  border: 2px solid #27026C;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.direction:hover svg {
  fill: #27026C !important;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.services-images {
  width: 100%;
  height: 540px;
  float: left;
  background-image: url('../images/ser-1.png');
  padding: 50px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.services-images h2 {
  width: 100%;
  font-size: 30px;
  margin-top: 400px;
  color: #ffff;
}

.services-images p {
  width: 100%;
  font-size: 16px;
  color: #ffff;
}

.services-images-2 {
  width: 100%;
  height: 540px;
  float: left;
  background-image: url('../images/ser-2.png');
  padding: 50px;
  background-size: cover;
  border-radius: 10px;
}

.services-images-2 h2 {
  width: 100%;
  font-size: 30px;
  margin-top: 400px;
  color: #ffff;
}

.services-images-2 p {
  width: 100%;
  font-size: 16px;
  color: #ffffff;
}





.read-more {
  padding: 5px 15px;
  border: 2px solid transparent;
  width: 130px;
  height: auto;
  border-radius: 5px;
  background-color: #27026C;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
}

.read-more a {
  text-decoration: none;
  color: white;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}

.read-more:hover {
  color: #27026C;
  background-color: white;
  text-decoration: none;
  border: 2px solid #27026C;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}











.ser {
  width: 100%;
  float: left;
}

.slide .owl-nav {
  display: none;
}


.ser2 {
  float: left;
  width: 100%;
}

.ser .owl-nav {
  display: none;
}














































































































































.ft-2 {
  height: auto;
  float: left;
  width: 180px;
  line-height: 35px;
}

.ft-l {
  border-top: 1px solid #BFBFBF;
  width: 100%;
}


/*.course-bx{
	width: 100%;
	float: left;
}*/
.course-bx h2 {
  font-size: 20px;
  /*    width: 100%;*/
  font-weight: 700;
  float: left;
  color: #283A82;
  margin-top: 30px;
  margin-bottom: 70px;
  margin-left: 5px;
}

.course-bx img {
  width: 30px;
  height: auto;
}

.course-bx a {
  font-weight: 400;
  width: 100%;
  text-transform: capitalize;
  float: left;
  text-decoration: none !important;
  font-size: 17px;
  margin-bottom: 15px;
  box-shadow: inset 0 0 0 0 #283A82;
  color: black;
}

.course-bx a:hover {
  color: #283A82;
  transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -webkit-transition: all ease-in-out 0.5s;
}



.cnt {
  width: 200px;
  float: left;
  height: auto;
  margin-top: 110px;

}

.cnt img {
  width: 40px;
  float: left;
  margin-right: 15px;
}

.cnt h6 {
  color: black;
  font-size: 18px;
  width: 100%;
  font-weight: 400;
}

.cnt a {
  color: #8F8F8F;
  font-size: 18px;
  width: 100%;
  text-decoration: none !important;
  font-weight: 400;
}





.fl {
  float: left;
  margin-top: 30px;
}

.fl h1 {
  float: left;
  font-size: 18px;
  font-weight: 400;
  margin-right: 20px;
}

.fl img {
  width: 25px;
  margin-right: 10px;
}










.abt-adr {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
}

.adr {
  width: 100%;
  float: left;
  height: 200px;
  padding: 20px;
  background-color: #283A82;
  border-radius: 20px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.adr h2 {
  width: 100%;
  float: left;
  font-size: 30px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}

.ad-txt {
  width: 100%;
  height: auto;
  float: left;
}

.ad-txt a {
  width: 100%;
  float: left;
  font-size: 15px;
  color: white;
  font-weight: 500;
}

.ad-txt p {
  width: 100%;
  float: left;
  font-size: 15px;
  color: white;
  font-weight: 500;
}

.gt {
  width: 100%;
  height: auto;
  float: left;
}

.gt h2 {
  width: 100%;
  float: left;
  font-size: 30px;
  font-weight: 500;
  color: black;
  margin-bottom: 20px;
}

.gt p {
  width: 100%;
  float: left;
  font-size: 15px;
  color: black;
  font-weight: 500;
}

.fn {
  width: 100%;
  float: left;
  margin-top: 30px;
}

.fn h3 {
  width: 100%;
  float: left;
  font-size: 17px;
  font-weight: 500;
  color: black;
  margin-bottom: 20px;
}

.fn1 {
  width: 100%;
  float: left;
  border-radius: 5px;
  border: solid 1px #b0aaaa;
  height: 50px;
}
























.home2 {
  width: 100%;

  height: auto;
  padding: 100px 0px;
  background-image: url('../images/home2.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.home2 h1 {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}




.abt-bg {

  padding: 60px 0px;
  background-color: white;
}

.abt-bg-head {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: #283A82;
  margin-bottom: 24px;
  max-width: 600px;
  text-transform: uppercase;

}


.abtbg-txt p {

  color: black;
  line-height: 35px;
  text-transform: capitalize;
}

.abtbg-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}




/* .abt-2 {
  width: 100%;
  float: left;
  background-color: #F5F5F5;
  height: auto;
  padding: 70px 0px;
}

.abt-2-txt {
  width: 100%;
  float: left;
  height: auto;
}

.abt-2-txt h5 {
  width: 100%;
  margin-bottom: 30px;
  float: left;
  font-size: 25px;
  font-weight: 700;
  color: #283A82;
  text-transform: capitalize;
}

.abt-2-txt p {
  width: 100%;
  margin-bottom: 30px;
  float: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 45px;
  color: black;
  text-transform: capitalize;
}


.abt-2-img {
  width: 100%;
  float: left;
  height: auto;
}

.abt-2-img img {
  width: 100%;
  float: left;
  height: auto;
}
 */











.mision {
  /* width: 100%;
  float: left; */
  background-color: #283A82;
  height: auto;
  padding: 70px 0px;
}

.mis-bx {
  width: 100%;
  float: left;
  height: auto;
}

.mis-bx img {
  width: 55px;
  float: left;
  margin-right: 30px;
  height: auto;
}

.mis-bx h3 {
  color: white;
  float: left;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 10px;
}

.mis-bx p {
  color: white;
  float: left;
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
  width: 100%;
  line-height: 35px;
  text-transform: capitalize;
}








.choose {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
}


.choose-img {
  width: 100%;
  float: left;
  height: auto;
}

.choose-img img {
  width: 100%;
  float: left;
  height: auto;
  /*    margin-left: -40px;*/
}


.choose-txt {
  width: 100%;
  float: left;
  height: auto;
  margin-top: 0px;
}

.choose-txt h2 {
  font-weight: 700;
  font-size: 30px;
  color: #283A82;
  width: 100%;
  text-transform: capitalize;
  float: left;
  margin-bottom: 25px;
}

.choose-txt p {
  width: 100%;
  float: left;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  color: black;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.ok {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 20px;
}

.ok img {
  width: 40px;
  float: left;
  margin-right: 20px;
  height: auto;
}

.ok h6 {
  float: left;
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  text-transform: capitalize;
  color: black;
}










.procces {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
  background-color: #F5F5F5;
}

.procces h1 {
  width: 100%;
  float: left;
  text-align: center;
  color: #283A82;
  margin-bottom: 70px;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 700;
}

.pro1 {
  width: 100%;
  float: left;
  height: 450px;
  padding: 30px 30px;
  background-color: #283A82;
  border-radius: 20px;
  margin-bottom: 70px;
}

.pro1 h4 {
  font-size: 25px;
  font-weight: 700;
  float: left;
  height: auto;
  width: 100%;
  text-align: center;
  color: white;
  text-transform: capitalize;
}

.pro-round {
  width: 200px;
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 50%;
  margin-top: 70px;
  padding-bottom: 50px;
  padding-top: 50px;
}

.pro-round img {
  width: 80px;
  height: auto;
  float: none;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pro1 p {
  font-size: 18px;
  text-align: center;
  width: 100%;
  font-weight: 400;
  color: white;
  margin-top: 40px;
}
















.comp {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
}

.comp h1 {
  width: 100%;
  float: left;
  text-align: center;
  color: #283A82;
  margin-bottom: 70px;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 700;
}

.comp-1 {
  width: 100%;
  float: left;
  height: auto;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.comp-1 img {
  width: 60px;
  height: auto;
  float: left;
  margin-right: 30px;
}

.comp-1 h3 {
  font-size: 24px;
  font-weight: 700;
  float: left;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #283A82;
  text-transform: uppercase;
}

.comp-1 p {
  font-size: 18px;
  width: 100%;
  line-height: 35px;
  margin-top: 80px;
  font-weight: 300;
  color: #283A82;
  text-transform: capitalize;
}





























.serv {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
}

.serv h1 {
  width: 100%;
  float: left;
  text-align: center;
  color: #283A82;
  margin-bottom: 70px;
  font-size: 35px;
  text-transform: capitalize;
  font-weight: 700;
}

.serv-1 {
  width: 100%;
  float: left;
  height: 500px;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.serv-1 img {
  width: 60px;
  height: auto;
  float: none;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.serv-1 h3 {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  float: left;
  height: auto;
  margin-top: 20px;
  color: #283A82;
  text-transform: uppercase;
}

.serv-1 p {
  font-size: 18px;
  width: 100%;
  line-height: 35px;
  margin-top: 40px;

  text-align: center;
  font-weight: 300;
  color: #283A82;
  text-transform: capitalize;
}



.serv-3 {
  width: 100%;
  float: left;
  height: 300px;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.serv-3 img {
  width: 60px;
  height: auto;
  float: none;
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.serv-3 h3 {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  float: left;
  height: auto;
  margin-top: 20px;
  color: #283A82;
  text-transform: uppercase;
}

.serv-3 p {
  font-size: 18px;
  width: 100%;
  line-height: 35px;
  margin-top: 40px;

  text-align: center;
  font-weight: 300;
  color: #283A82;
  text-transform: capitalize;
}





.serv-2 {
  width: 100%;
  float: left;
  background-color: #F5F5F5;
  height: auto;
  padding: 70px 0px;
}

.serv-2 h3 {
  font-size: 30px;
  font-weight: 700;
  float: left;
  height: auto;
  line-height: 55px;
  color: #283A82;
  text-transform: uppercase;
  margin-top: 20px;
}

.serv-2 p {
  font-size: 18px;
  line-height: 35px;
  font-weight: 300;
  color: #283A82;
  float: right;
  text-transform: capitalize;
}












.prodct-1 {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
  padding-bottom: 0px !important;
}


.prodct-1-bx1 {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 50px;
}

.prodct-1-bx1 img {
  width: 100%;
  float: left;
  height: auto;
}

.prodct-1-bx1 h6 {
  width: 100%;
  text-align: center;
  float: left;
  font-size: 18px;
  color: #283A82;
  font-weight: 400;
  margin-top: 15px;
  text-transform: capitalize;
}

.prodct-1-bx1 p {
  font-size: 18px;
  width: 100%;
  text-align: center;
}







.portfolio-pg {
  width: 100%;
  float: left;
  height: auto;
  padding: 70px 0px;
  padding-bottom: 0px;
}



.pt-pg {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 50px;
}

.pt-pg-img {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 20px;
}

.pt-pg-img img {
  width: 100%;
  float: left;
}

.pt-pg-txt {
  margin-top: 15px;
}

.pt-pg-txt h2 {
  width: 100%;
  float: left;
  height: auto;
  font-size: 18px;
  color: #283A82;
  font-weight: 400;
  margin-bottom: 20px;
}

.pt-pg-txt p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/*  */
.port-img img {
  width: 100%;
  height: auto;
  /* Set a fixed height */
  object-fit: cover;
}

.port-img {
  margin-bottom: 30px;
}

.port-head {
  margin-top: 60px;
}

.port-head h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #283A82;
  margin-bottom: 50px;

  text-transform: uppercase;
}

.port-para p {
  color: black;
  line-height: 35px;
  text-transform: capitalize;
  margin-bottom: 40px;

}

.portfolio-sec {
  padding-top: 60px;
  padding-bottom: 80px;
}



.pt-pg-txt a {
  display: inline-block;
  font-size: 18px;
  color: #283A82;
  font-weight: 400;
  margin-bottom: 20px;
}

/*  */

.slidehead h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #283A82;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;


}



.card img {
  width: 100%;
  height: 400px;
  object-fit: cover;

}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  text-align: center;

}

.card-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-content .card-btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.card-content .card-btn a {
  color: white;
  text-decoration: none;
}

.card-content .card-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.your-slider .card {
  margin: 0 10px;
}















.product {
  padding-top: 60px;
}

.product-page {
  padding: 70px 0px;
}

.product-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}



.product-title {
  display: inline-block;
  font-size: 18px;
  color: #283A82;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 10px;
}

.product-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.product-title:hover {
  text-decoration: underline;
}

.product-head h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #283A82;
  margin-bottom: 50px;

  text-transform: uppercase;
}

.industries-section a {
  text-decoration: none !important;
}

.process-sections {
  padding: 60px 20px;
  position: relative;
  background-color: #f9f9f9;
}

.process-title {
  text-align: center;
  margin-bottom: 40px;
}

.process-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #283A82;
}

.process-line {
  position: absolute;
  top: 201px;
  left: -47px;
  z-index: 0;
}



.process-box {
  position: relative;
  z-index: 1;
}

.process-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #283A82;
}

.process-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.process-icon img {
  width: 54px;
  height: 54px;
}

.info-card-section {
  padding: 60px 0;
}

.info-title {
  text-align: center;
  margin-bottom: 40px;
}

.info-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #283A82;
}

.info-block {
  background-color: #283a82;
  color: #ffffff;
  padding: 20px;

  position: relative;
  text-align: left;
  height: 300px;
}

.info-block h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 20px;
}

.info-block p {
  font-size: 16px;
  line-height: 1.6;
}

.tag {
  position: absolute;
  bottom: 30px;
  left: -13px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 9999px 9999px 0;

  background-color: #ffffff;
  color: #283a82;
  display: inline-block;
}

.tag:hover {
  background-color: #f0f4ff;
  color: #1f2e7a;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-img img {
  height: 150px;
  width: 150px;
  opacity: 0.3;
}

.info-img {
  position: absolute;
  top: -55px;
  right: -68px;
}



.ctabox {
  position: relative;
  height: 350px;
  border-radius: 30px;
  padding: 40px;
  background-color: #283a82;
  z-index: 22;
}

.ctabox::after {
  content: "";
  display: block;
  background-image: url(../assets/images/pattern-cta\ \(1\).svg);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.ctacontent {
  position: relative;
  z-index: 22;
}

.ctacontent h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.ctacontent p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;

  gap: 18px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.primary {
  background-color: #fff;
  color: #283a82;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.primary:hover {
  background-color: #f0f0f0;
  text-decoration: none;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.secondary:hover {
  background-color: #fff;
  color: #283a82;
  text-decoration: none;
}
.uni-sec{
  padding: 30px 0px;
  background-color: ;
}
.uniform-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: background 0.3s ease;
  border-radius: 8px;
}

.uniform-card:hover {
  background: #F7F7F7; /* or use #F0F0F0 as an alternative */
}

.card-content {
  flex: 1;
  text-align: left;
}

.card-content h5 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.card-content a {
  text-decoration: underline;
  color: #333;
  font-size: 14px;
}

.card-image img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}
.card-content {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}